home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / simage / bmpview.dpr next >
Text File  |  1996-04-08  |  375b  |  19 lines

  1. program BMPview;
  2.  
  3. uses
  4.   Forms,
  5.   Controls,
  6.   Bmpview1 in 'BMPVIEW1.PAS' {Viewer},
  7.   Fullscr in 'FULLSCR.PAS' {FullSlide};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   screen.cursor := crHourGlass;
  13.   Application.Title := 'BMP Viewer';
  14.   Application.CreateForm(TViewer, Viewer);
  15.   Application.CreateForm(TFullSlide, FullSlide);
  16.   screen.cursor := crDefault;
  17.   Application.Run;
  18. end.
  19.